b737a232d34b1ccdb399fdc2147106f7eeff6615,src/main/java/com/steelbridgelabs/oss/neo4j/structure/Neo4JVertex.java,Neo4JVertex,Neo4JVertex,#Neo4JGraph#Neo4JSession#Neo4JElementIdProvider#String#Node#,204

Before Change


        Objects.requireNonNull(node, "node cannot be null");
        // store fields
        this.graph = graph;
        this.partition = new HashSet<>(Arrays.asList(graph.getPartition()));
        this.session = session;
        this.propertyIdProvider = propertyIdProvider;
        this.idFieldName = idFieldName;

After Change


        Objects.requireNonNull(node, "node cannot be null");
        // store fields
        this.graph = graph;
        this.partition = graph.getPartition();
        this.additionalLabels = graph.vertexLabels();
        this.session = session;
        this.propertyIdProvider = propertyIdProvider;